JavaScript Objects

JS Challenge 1

Create an object weather and console log it

JS Challenge 2

Create an object weather with properties of temp and humidity and console log the object

JS Challenge 3

console log the humidity and the temperature

JS Challenge 4

Add a property windSpeed and console log it

JS Challenge 5

Console log the wind speed, the temperature and the humidity using the square brackets syntax

JS Challenge 6

Create an object or an array of objects called `forecast` with each day’s temperature, and console log it

Go back